>SIKES HAS ENTERED THE CHAT
>LOADING PARTY.EXE
>INVALID!
>ERROR!
>RESETTING DATABASE...
>CLEARING CACHE...
>SPANKING TIGRESS...
>0H 0M 3.2S DONE 100%if (testIsTrue){
testIsTrue = False;
}
Python:
if testIsTrue:
testIsTrue = False
Python is more focused on indentation, while Java is more focused on the statements you're making.if (testIsTrue){ testIsTrue = False; }
And it'll work just fine.

Introduction
Part I: Tigress/Wing Wu
Chapter 1
Chapter 2
Chapter 3
Chapter 4
Chapter 5
Part II: Mei Ling/Wan Wu
Chapter 1
Chapter 2
Chapter 3
Chapter 4
Chapter 5
Part III: Song/Su Wu
Chapter 1
Chapter 2
Chapter 3
Chapter 4
Chapter 5
Conclusion
Epilogue
With Ghostgunner's help, the planning is going much smoother and I don't feel like I'm throwing darts at a dartboard with ideas taped on it. I know my updates seem a bit slow right now, but it gets a bit difficult to explain what it is that we're doing without giving away too much (you'll see what I mean when some of Ghost's side quests come into fruition). I know a lot of people don't care about spoilers, which is why I have the livestreams, but the posts are pretty much strictly for "Hey, I'm alive, we're making progress, here's something short for you to look at/play with".bg room = "bg room.png" should be before label start:
Also, when you include scene or show statements, you don't use the file name, you use the image variable name. (bg room)image bg room = "bg room.png"
label start: (edited)scene bg room need to be declared before you assign the image to it? (edited)bg variable is. What you need to do is put image bg room = "bg room.png"
There's a few different statements that can be made before trying to create something:
define is for variables that will never change.
default is for variables that will change.
image is for images.
def is for functions, which go inside an init python: block. (edited)default health = 100
image game_over = "game_over.png"
label test:
if health <= 0:
show game_over
default health = 100 creates a variable named "health" which is preset to 100.
image game_over = "game_over.png" creates a displayable named "game_over" which is sourced to the image "game_over.png" in the "images" folder.
label test: creates an environment/checkpoint for your project.
if health <= 0: checks the variable "health" to see if it has a value below 1. If it does, the indented body of code directly beneath it will be ran.
show game_over calls on the displayable to display the source on screen. (edited)
n == 2 ? 1 : 0;
Vs
if(n == 2)
Return 1;
Else
Return 0; (edited)Mr. Ping will remember that.
6Part I: Tigress/Wing Wu
Part II: Mei Ling/Wan Wu
Part III: Song/Su Wu
Evil Path:
Part I: Wing Wu/Song
Part II: Wan Wu/Mei Ling
Part III: Su Wu/Tigress
Side Companions (Companion 1/Companion 2)
Part I: Tamaja/Daxia
Part II: Jenn/Carlos (names pending)
Part III: Empress Xiao/Jade Tusk1. Help her get unstuck.
2. Hide and take cover.
Option 2 would result in Tamaja getting fucked by whichever NPC comes by. By default, the text for these options is black, so that the result of your decisions feels more like chance than calculation. You can set it so that these options will have purple text, to warn you that your companion will be fucked by another male. Alternatively, you can simply have these options hidden.
However, it's important to note that this only counts for vaginal and anal sex. Ghost and I have already agreed that any kind of rubbing or oral sex done by male NPCs is fine. The main reason behind this being that later Chapters become harder to write for when NPCs can only strip, spank, or wedgie your companion. Therefore, something had to give. Hopefully that doesn't piss too many people off.Rhinos, sheep, goats, and horses
I see you won the hooves argument.Rhinos, sheep, goats, and horses
I see you won the hooves argument.
3combat system
Gotta be able to punch before you can run. Or yank, I guess.
3
1
5

Still Alive. -GLaDOS
Naked Tigress Idle? Hidden behind a Spoiler.
Empress Xiao? Feelin' Lucky.
Wu Sisters? Guts Rearranged.
Tile System? 3D... and finally NOT buggy.
Nagibator's Dev Skills? Shit.
Hotel? Trivago.
Also, have some fun shit to show in a few days. Wish I had a bit more to say, but too much would feel disingenuous, and too little would feel dismissive. So I'm just going to post shit. Have fun.
3